home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / IsInt.au3 < prev    next >
Text File  |  2006-06-17  |  167b  |  5 lines

  1. IsInt(-12345)     ;returns 1
  2. IsInt(3.0000)     ;returns 1
  3. IsInt("5432")     ;returns 0 since is a string
  4. IsInt(7.5 - 4.5)  ;returns 1 since evaluates to integer 3
  5.